home *** CD-ROM | disk | FTP | other *** search
/ CD ROM Paradise Collection 4 / CD ROM Paradise Collection 4 1995 Nov.iso / comms_w / pboy190.zip / SAMPLE.ZIP / 0000046.MSG < prev    next >
Text File  |  1994-03-06  |  6KB  |  126 lines

  1. #! rnews 841
  2. Newsgroups: comp.os.ms-windows.nt.misc
  3. Path: netnews.upenn.edu!msuinfo!uwm.edu!vixen.cso.uiuc.edu!howland.reston.ans.net!EU.net!uknet!cix.compulink.co.uk!aroby
  4. From: aroby@cix.compulink.co.uk ("Anthony Roby")
  5. Subject: Re: PPP and SLIP for NT
  6. Message-ID: <CM8rAD.Hp2@cix.compulink.co.uk>
  7. Organization: @home
  8. References: <2lad21$1er@wrdis02.robins.af.mil>
  9. Date: Sun, 6 Mar 1994 11:44:36 GMT
  10. X-News-Software: Ameol
  11. Lines: 8
  12.  
  13. Connect to do what ?  You can connect using the Remote Access Services 
  14. which allow your laptop to act as though it was connected directly to the 
  15. LAN, albeit via a slow link.
  16.  
  17. -------------------------------------------------------------------------
  18. Anthony Roby         aroby@cix.compulink.co.uk
  19. 7 Delcombe Avenue    aroby@robocop.demon.co.uk
  20. Worcester Park                 Surrey    ENGLAND    Phone +44 81 337 0913
  21. #! rnews 889
  22. Newsgroups: comp.os.ms-windows.nt.misc
  23. Path: netnews.upenn.edu!msuinfo!uwm.edu!vixen.cso.uiuc.edu!howland.reston.ans.net!EU.net!uknet!cix.compulink.co.uk!aroby
  24. From: aroby@cix.compulink.co.uk ("Anthony Roby")
  25. Subject: Re: Listing Devices In Windows NT
  26. Message-ID: <CM8tnr.Ix2@cix.compulink.co.uk>
  27. Organization: @home
  28. References: <raviCM7Goq.4un@netcom.com>
  29. Date: Sun, 6 Mar 1994 12:35:50 GMT
  30. X-News-Software: Ameol
  31. Lines: 11
  32.  
  33. > We are writing a NT device driver and would like some clarifications...
  34. > 1) I would like to look at the list of devices in NT. > Can I somehow 
  35. do "ls \device\*"?
  36.  
  37. Use the devices program in the Resource Kit.
  38.  
  39. Anthony
  40. -------------------------------------------------------------------------
  41. Anthony Roby         aroby@cix.compulink.co.uk
  42. 7 Delcombe Avenue    aroby@robocop.demon.co.uk
  43. Worcester Park                 Surrey    ENGLAND    Phone +44 81 337 0913
  44. #! rnews 4418
  45. Newsgroups: comp.os.ms-windows.nt.misc
  46. Path: netnews.upenn.edu!msuinfo!uwm.edu!vixen.cso.uiuc.edu!howland.reston.ans.net!EU.net!uknet!cix.compulink.co.uk!aroby
  47. From: aroby@cix.compulink.co.uk ("Anthony Roby")
  48. Subject: Re: Windows NT Authentication
  49. Message-ID: <CM8tnt.Ixn@cix.compulink.co.uk>
  50. Organization: @home
  51. References: <1994Mar06.053222.198102@zeus.aix.calpoly.edu>
  52. Date: Sun, 6 Mar 1994 12:35:53 GMT
  53. X-News-Software: Ameol
  54. Lines: 70
  55.  
  56. > Hi ho--
  57. > > I'm doing a paper for my grad class on NT's object manager, and I was
  58. > tryingto get more information on the authentication mechanism used in
  59. > thedistributed security version of NT.  It'd be nice if it were some
  60. > form of
  61. > public key mechanism.
  62. > > If anyone know (or knows someone who knows), please post or let me 
  63. know.
  64. > --
  65. > # estenson@galaxy.csc.calpoly.edu --------------------------- Eric
  66. > Stenson #
  67.  
  68. The following is more about the logon process than distributed security.  
  69. In the distributed model, the client machine asks the domain server for a 
  70. security challenge for a particular user.  I think it then uses this 
  71. challenge to encrypt the userid and password and send to the domain 
  72. controller (ie avoiding sending the password over the network as readable 
  73. text).
  74.  
  75. In Windows NT, local logon at the attached keyboard and screen occurs 
  76. through the interaction of WinLogon (logon process), the Local Security 
  77. Authority (LSA), one or more authentication packages, and the Security 
  78. Account Manager (SAM). It is the LSA that authenticates a user through 
  79. the services provided to logon processes and authentication packages.
  80.  
  81. Logon processes are special processes that intercept specific keystroke 
  82. combinations, called Secure Access Sequences (SAS), from log on devices, 
  83. and then prompt for device-specific information from the user who is 
  84. attempting to logon. WinLogon is the process that intercepts logon 
  85. requests from the keyboard. The WinLogon process makes calls to LSA and 
  86. the Windows NT authentication package to authenticate the user attempting 
  87. to log on.  If the user is authenticated, the logon process activates a  
  88. logon shell on behalf of the user.
  89.  
  90. Authentication packages are dynamically linked libraries that perform 
  91. authentication checks specific to the kind of information the package 
  92. expects. A package used to authenticate an Automatic Teller Machine (ATM) 
  93. may take a user name and identification number as its credentials.
  94.  
  95. Additional packages could include a Novell or Banyan specific package as 
  96. an example, or other packages provided by OEMs or ISVs. At boot time, LSA 
  97. looks in its policy database for the list of authentication packages 
  98. available on the machine and links to these packages.
  99.  
  100. Any supplemental authentication package that has registered itself with 
  101. the LSA will be called after the Windows NT authentication package is 
  102. called. Users can then provide whatever credentials the supplemental 
  103. package expects. The Windows NT authentication package expects a username 
  104. and password. If the supplemental package also expects a username and 
  105. password, users can log on to additional environments, such as NetWare, 
  106. with a single username and password. 
  107. The practical realization of this ability is aptly demonstrated with the 
  108. Microsoft NetWare Workstation Compatible Services (NWCS). Before a users 
  109. can use a file, application, or print queue on a NetWare server, they 
  110. must have an account on the server. The NetWare server account contains 
  111. users credentials, which are the username and password. By default, 
  112. Windows NT supplies the username and password that were used by users 
  113. when they logged on to Windows NT as the credentials it sends to the 
  114. NetWare server. It is best that users keep their username and password on 
  115. NetWare servers the same as those that they use when logging on to 
  116. Windows NT. This allows users to use NetWare servers without having to 
  117. supply another username and password. It also makes it easier for network 
  118. administrators to coordinate user accounts. Users will be prompted to 
  119. supply credentials only if their username and password on the NetWare 
  120. server are not the same as their username and password in Windows NT.
  121.  
  122. -------------------------------------------------------------------------
  123. Anthony Roby         aroby@cix.compulink.co.uk
  124. 7 Delcombe Avenue    aroby@robocop.demon.co.uk
  125. Worcester Park                 Surrey    ENGLAND    Phone +44 81 337 0913
  126.